Go to the source code of this file.
Defines | |
#define | MAX(a, b) (((a)>(b))?(a):(b)) |
A macro that returns the maximum of a and b. | |
Typedefs | |
typedef unsigned int | UINT32 |
A type definition for a . | |
Functions | |
int | open (const char *, int) |
Opens a file descriptor. | |
int | close (int) |
Closes the file descriptor fd. | |
size_t | write (int, const char *, size_t) |
Writes count bytes from buf to the filedescriptor fd. | |
int | read (int, char *, size_t) |
Read bytes from a file descriptor. | |
Variables | |
int | errno |
Contains the last error code. |
Details.
|
A macro that returns the maximum of a and b. Details. |
|
A type definition for a . Details. |
|
Closes the file descriptor fd.
|
|
Opens a file descriptor.
|
|
Read bytes from a file descriptor.
|
|
Writes count bytes from buf to the filedescriptor fd.
|
|
Contains the last error code.
|